projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e3bf02
)
(Fbyte_code): Use MOST_POSITIVE_FIXNUM.
author
Gerd Moellmann
<gerd@gnu.org>
Sat, 6 Oct 2001 23:37:52 +0000
(23:37 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Sat, 6 Oct 2001 23:37:52 +0000
(23:37 +0000)
src/bytecode.c
patch
|
blob
|
history
diff --git
a/src/bytecode.c
b/src/bytecode.c
index 2c4e1cca48db711587bd10f983746bd8a01d40d9..f8ecc4f64c092737e5b779b9ebda0d5fda821c78 100644
(file)
--- a/
src/bytecode.c
+++ b/
src/bytecode.c
@@
-699,7
+699,7
@@
If the third argument is incorrect, Emacs may crash.")
v1 = TOP;
v2 = Fget (v1, Qbyte_code_meter);
if (INTEGERP (v2)
- && XINT (v2)
!= ((1<<VALBITS)-1)
)
+ && XINT (v2)
< MOST_POSITIVE_FIXNUM
)
{
XSETINT (v2, XINT (v2) + 1);
Fput (v1, Qbyte_code_meter, v2);